home *** CD-ROM | disk | FTP | other *** search
- //begin_lib <!-- Begin External JavaScript -- DO NOT REMOVE THIS LINE -->
-
- function jsMsgBox(){
- this.Message="";
- this.DefaultText="";
- this.ShowMessage=msg_ShowMessage;
- this.ShowInput=msg_ShowInput;
- this.ShowQuestion=msg_ShowQuestion;
- }
-
- function msg_ShowMessage(msg){
- if(msg!=undefined){
- this.Message=msg;
- }
- alert(this.Message);
- }
-
- function msg_ShowInput(msg,def){
- if(msg!=undefined){
- this.Message=msg;
- }
- if(def!=undefined){
- this.DefaultText=def;
- }
- return prompt(this.Message,this.DefaultText);
- }
-
- function msg_ShowQuestion(msg){
- if(msg!=undefined){
- this.Message=msg;
- }
- return confirm(this.Message);
- }
-
- //end_lib <!-- End External JavaScript -- DO NOT REMOVE THIS LINE -->
-